home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Archiver / DMSFAC10.LHA / DMS-Face / Install DMS-Face < prev    next >
Encoding:
Text File  |  1994-06-16  |  1.2 KB  |  83 lines

  1. ; script to install DMS-Face 
  2.  
  3. (set Opt 3)
  4. (complete 0)
  5.  
  6. ;Get directory to install DMS-Face in.
  7. (set destdir 
  8.     (askdir 
  9.         (prompt "In which drawer should DMS-Face be installed?") 
  10.         (help @askdir-help)
  11.         (default ("Utilities"))
  12.     )
  13. )
  14.  
  15. (complete 10)
  16.  
  17. (set installfiles
  18.     (askoptions
  19.         (prompt "Which of the following optional programs/helpfile should be installed ?")
  20.         (help @askoptions-help)
  21.         (choices "DMS-Face" "DMS-Face.Guide")
  22.         (default Opt)
  23.     )
  24. )
  25.  
  26. (complete 30)
  27.  
  28. ;Copy program files to destination.
  29.  
  30. (if (BITAND installfiles 1)
  31. (copyfiles
  32.     (source "DMS-Face")
  33.     (dest destdir)
  34. )
  35. )
  36.  
  37. (if (BITAND installfiles 1)
  38. (copyfiles
  39.     (source "DMS-Face.info")
  40.     (dest destdir)
  41. )    
  42. )
  43.  
  44. (complete 60)
  45.  
  46. (if (BITAND installfiles 2)
  47. (
  48.     (makedir ("Help:English")
  49.     )
  50.  
  51. (copyfiles
  52.     (source "Help/DMS-Face.guide")
  53.     (dest "help:english/")
  54. )
  55. )
  56. )
  57.  
  58. (if (BITAND installfiles 2)
  59. (copyfiles
  60.     (source "Help/DMS-Face.guide.info")
  61.     (dest "help:english/")
  62. )
  63. )
  64.  
  65. (complete 80)
  66.  
  67. (copyfiles
  68.     (source "DMS-FACE.1.cfg")
  69.     (dest "ENVARC:MUI/")
  70. )
  71.  
  72. (copyfiles
  73.     (source "DMS-FACE.1.cfg")
  74.     (dest "ENV:MUI/")
  75. )
  76.  
  77. ;Correct @default-dest so that final information is correct.
  78. (set @default-dest destdir)
  79.  
  80. (complete 100)
  81.  
  82. (exit)
  83.